home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / u_man / cat1 / dc.z / dc
Text File  |  1998-10-20  |  12KB  |  331 lines

  1.  
  2.  
  3.  
  4. DDDDCCCC((((1111))))                                                                    DDDDCCCC((((1111))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      _dddd_cccc - an arbitrary precision calculator
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      _dddd_cccc
  13.  
  14. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  15.      _D_c is a reverse-polish desk calculator which supports unlimited precision
  16.      arithmetic.  It also allows you to define and call macros.  Normally _d_c
  17.      reads from the standard input; if any command arguments are given to it,
  18.      they are filenames, and _d_c reads and executes the contents of the files
  19.      before reading from standard input.  All normal output is to standard
  20.      output; all error output is to standard error.
  21.  
  22.      A reverse-polish calculator stores numbers on a stack.  Entering a number
  23.      pushes it on the stack.  Arithmetic operations pop arguments off the
  24.      stack and push the results.
  25.  
  26.      To enter a number in _d_c, type the digits with an optional decimal point.
  27.      Exponential notation is not supported.  To enter a negative number, begin
  28.      the number with ``_''.  ``-'' cannot be used for this, as it is a binary
  29.      operator for subtraction instead.  To enter two numbers in succession,
  30.      separate them with spaces or newlines.  These have no meaning as
  31.      commands.
  32.  
  33. PPPPrrrriiiinnnnttttiiiinnnngggg CCCCoooommmmmmmmaaaannnnddddssss
  34.      pppp    Prints the value on the top of the stack, without altering the
  35.           stack.  A newline is printed after the value.
  36.  
  37.      PPPP    Prints the value on the top of the stack, popping it off, and does
  38.           not print a newline after.
  39.  
  40.      ffff    Prints the entire contents of the stack without altering anything.
  41.           This is a good command to use if you are lost or want to figure out
  42.           what the effect of some command has been.
  43.  
  44. AAAArrrriiiitttthhhhmmmmeeeettttiiiicccc
  45.      ++++    Pops two values off the stack, adds them, and pushes the result.
  46.           The precision of the result is determined only by the values of the
  47.           arguments, and is enough to be exact.
  48.  
  49.      ----    Pops two values, subtracts the first one popped from the second one
  50.           popped, and pushes the result.
  51.  
  52.      ****    Pops two values, multiplies them, and pushes the result.  The number
  53.           of fraction digits in the result is controlled by the current
  54.           precision value (see below) and does not depend on the values being
  55.           multiplied.
  56.  
  57.      ////    Pops two values, divides the second one popped from the first one
  58.           popped, and pushes the result.  The number of fraction digits is
  59.           specified by the precision value.
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDCCCC((((1111))))                                                                    DDDDCCCC((((1111))))
  71.  
  72.  
  73.  
  74.      %%%%    Pops two values, computes the remainder of the division that the ////
  75.           command would do, and pushes that.  The division is done with as
  76.           many fraction digits as the precision value specifies, and the
  77.           remainder is also computed with that many fraction digits.
  78.  
  79.      ^^^^    Pops two values and exponentiates, using the first value popped as
  80.           the exponent and the second popped as the base.  The fraction part
  81.           of the exponent is ignored.  The precision value specifies the
  82.           number of fraction digits in the result.
  83.  
  84.      vvvv    Pops one value, computes its square root, and pushes that.  The
  85.           precision value specifies the number of fraction digits in the
  86.           result.
  87.  
  88.      Most arithmetic operations are affected by the ``precision value'', which
  89.      you can set with the kkkk command.  The default precision value is zero,
  90.      which means that all arithmetic except for addition and subtraction
  91.      produces integer results.
  92.  
  93.      The remainder operation %%%% requires some explanation:  applied to
  94.      arguments ``a'' and ``b'' it produces ``a - (b * (a / b))'', where ``a /
  95.      b'' is computed in the current precision.
  96.  
  97. SSSSttttaaaacccckkkk CCCCoooonnnnttttrrrroooollll
  98.      cccc    Clears the stack, rendering it empty.
  99.  
  100.      dddd    Duplicates the value on the top of the stack, pushing another copy
  101.           of it.  Thus, ``4d*p'' computes 4 squared and prints it.
  102.  
  103. RRRReeeeggggiiiisssstttteeeerrrrssss
  104.      _D_c provides 256 memory registers, each named by a single character.  You
  105.      can store a number or a string in a register and retrieve it later.
  106.  
  107.      ssss_r   Pop the value off the top of the stack and store it into register _r.
  108.  
  109.      llll_r   Copy the value in register _r and push it onto the stack.  This does
  110.           not alter the contents of _r.
  111.  
  112.      Each register also contains its own stack.  The current register value is
  113.      the top of the register's stack.
  114.  
  115.      SSSS_r   Pop the value off the top of the (main) stack and push it onto the
  116.           stack of register _r.  The previous value of the register becomes
  117.           inaccessible.
  118.  
  119.      LLLL_r   Pop the value off the top of register _r's stack and push it onto the
  120.           main stack.  The previous value in register _r's stack, if any, is
  121.           now accessible via the llll_r command.
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. DDDDCCCC((((1111))))                                                                    DDDDCCCC((((1111))))
  137.  
  138.  
  139.  
  140. Parameters
  141.      _D_c has three parameters that control its operation:  the precision, the
  142.      input radix, and the output radix.  The precision specifies the number of
  143.      fraction digits to keep in the result of most arithmetic operations.  The
  144.      input radix controls the interpretation of numbers typed in; all numbers
  145.      typed in use this radix.  The output radix is used for printing numbers.
  146.  
  147.      The input and output radices are separate parameters; you can make them
  148.      unequal, which can be useful or confusing.  The input radix must be
  149.      between 2 and 36 inclusive.  The output radix must be at least 2.  The
  150.      precision must be zero or greater.  The precision is always measured in
  151.      decimal digits, regardless of the current input or output radix.
  152.  
  153.      iiii    Pops the value off the top of the stack and uses it to set the input
  154.           radix.
  155.  
  156.      oooo    Pops the value off the top of the stack and uses it to set the
  157.           output radix.
  158.  
  159.      kkkk    Pops the value off the top of the stack and uses it to set the
  160.           precision.
  161.  
  162.      IIII    Pushes the current input radix on the stack.
  163.  
  164.      OOOO    Pushes the current output radix on the stack.
  165.  
  166.      KKKK    Pushes the current precision on the stack.
  167.  
  168. SSSSttttrrrriiiinnnnggggssss
  169.      _D_c can operate on strings as well as on numbers.  The only things you can
  170.      do with strings are print them and execute them as macros (which means
  171.      that the contents of the string are processed as _d_c commands).  All
  172.      registers and the stack can hold strings, and _d_c always knows whether any
  173.      given object is a string or a number.  Some commands such as arithmetic
  174.      operations demand numbers as arguments and print errors if given strings.
  175.      Other commands can accept either a number or a string; for example, the pppp
  176.      command can accept either and prints the object according to its type.
  177.  
  178.      [[[[_c_h_a_r_a_c_t_e_r_s]]]]
  179.           Makes a string containing _c_h_a_r_a_c_t_e_r_s (contained between balanced [[[[
  180.           and ]]]] characters), and pushes it on the stack.  For example, [[[[ffffoooooooo]]]]PPPP
  181.           prints the characters ffffoooooooo (with no newline).
  182.  
  183.      xxxx    Pops a value off the stack and executes it as a macro.  Normally it
  184.           should be a string; if it is a number, it is simply pushed back onto
  185.           the stack.  For example, [[[[1111pppp]]]]xxxx executes the macro 1111pppp which pushes 1111
  186.           on the stack and prints 1111 on a separate line.
  187.  
  188.      Macros are most often stored in registers; [[[[1111pppp]]]]ssssaaaa stores a macro to print
  189.      1111 into register aaaa, and llllaaaaxxxx invokes this macro.
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. DDDDCCCC((((1111))))                                                                    DDDDCCCC((((1111))))
  203.  
  204.  
  205.  
  206.      >>>>_r   Pops two values off the stack and compares them assuming they are
  207.           numbers, executing the contents of register _r as a macro if the
  208.           original top-of-stack is greater.  Thus, 1111 2222>>>>aaaa will invoke register
  209.           aaaa's contents and 2222 1111>>>>aaaa will not.
  210.  
  211.      <<<<_r   Similar but invokes the macro if the original top-of-stack is less.
  212.  
  213.      ====_r   Similar but invokes the macro if the two numbers popped are equal.
  214.  
  215.      ????    Reads a line from the terminal and executes it.  This command allows
  216.           a macro to request input from the user.
  217.  
  218.      qqqq    exits from a macro and also from the macro which invoked it.  If
  219.           called from the top level, or from a macro which was called directly
  220.           from the top level, the qqqq command will cause _d_c to exit.
  221.  
  222.      QQQQ    Pops a value off the stack and uses it as a count of levels of macro
  223.           execution to be exited.  Thus, 3333QQQQ exits three levels.  The QQQQ command
  224.           will never cause _d_c to exit.
  225.  
  226. SSSSttttaaaattttuuuussss IIIInnnnqqqquuuuiiiirrrryyyy
  227.      ZZZZ    Pops a value off the stack, calculates the number of digits it has
  228.           (or number of characters, if it is a string) and pushes that number.
  229.  
  230.      XXXX    Pops a value off the stack, calculates the number of fraction digits
  231.           it has, and pushes that number.  For a string, the value pushed is
  232.           0.
  233.  
  234.      zzzz    Pushes the current stack depth; the number of objects on the stack
  235.           before the execution of the zzzz command.
  236.  
  237. MMMMiiiisssscccceeeellllllllaaaannnneeeeoooouuuussss
  238.      !!!!    Will run the rest of the line as a system command.
  239.  
  240.      ####    Will interpret the rest of the line as a comment.
  241.  
  242.      ::::_r   Will pop the top two values off of the stack.  The old second-to-top
  243.           value will be stored in the array _r, indexed by the old top-of-stack
  244.           value.
  245.  
  246.      ;;;;_r   Pops the top-of-stack and uses it as an index into the array _r.  The
  247.           selected value is then pushed onto the stack.
  248.  
  249. NNNNOOOOTTTTEEEESSSS
  250.      The array operations :::: and ;;;; are usually only used by traditional
  251.      implementations of _b_c.  (The GNU _b_c is self contained and does not need
  252.      _d_c to run.)  The comment operator #### is a new command not found in
  253.      traditional implementations of _d_c.
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. DDDDCCCC((((1111))))                                                                    DDDDCCCC((((1111))))
  269.  
  270.  
  271.  
  272. BUGS
  273.      Email bug reports to bbbbuuuugggg----ggggnnnnuuuu----uuuuttttiiiillllssss@@@@pppprrrreeeepppp....aaaaiiii....mmmmiiiitttt....eeeedddduuuu.  Be sure to include
  274.      the word ``dc'' somewhere in the ``Subject:'' field.
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.